build process

All posts tagged build process by Linux Bash
  • Posted on
    Featured Image
    In the world of Linux, managing packages and software installations is a routine task. DEB packages are a common format used by Debian and its derivatives like Ubuntu. While most users install packages from precompiled binaries, there are times when you might need to build a package from source. This can be due to the need for a specific configuration, the latest features, or patches that are not available in binary form. Here, we'll walk through how to build DEB packages from source and provide guidance for managing them across different Linux distributions using apt, dnf, and zypper. Before you begin, ensure that your system is prepared with the necessary tools.
  • Posted on
    Featured Image
    Compiling software from source can be an enlightening experience for any Linux user. It gives you more control over the configurations, ensures you get the latest features (even those not yet available in binary form), and optimises the software to suit your particular hardware more effectively. This guide will walk you through the steps to download and compile software from source code, providing specific instructions for various Linux distributions using different package managers like apt, dnf, and zypper. There are several reasons to compile programs from source code: 1. Customization: You can enable or disable specific features that are not in precompiled packages. 2.